aboutsummaryrefslogtreecommitdiff
path: root/examples/hello-next/pages/posts/[id].tsx
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-08-31 23:07:03 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-08-31 23:07:03 -0700
commite2b9f232315fde2f47e0d55fb01f9f214ac2b3d3 (patch)
tree72aa3ca7dce78f2377b1c9d40771f42383b2f766 /examples/hello-next/pages/posts/[id].tsx
parent78e1144ca52723571c5e59f2c990a8902e1f7c0b (diff)
downloadbun-e2b9f232315fde2f47e0d55fb01f9f214ac2b3d3.tar.gz
bun-e2b9f232315fde2f47e0d55fb01f9f214ac2b3d3.tar.zst
bun-e2b9f232315fde2f47e0d55fb01f9f214ac2b3d3.zip
Add display name field to frameworks, improve logging, add counters, add
Former-commit-id: b2cf011b6c6405a786fe22367e1cd4e6c2c4c90f
Diffstat (limited to 'examples/hello-next/pages/posts/[id].tsx')
-rw-r--r--examples/hello-next/pages/posts/[id].tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hello-next/pages/posts/[id].tsx b/examples/hello-next/pages/posts/[id].tsx
index 48413669c..bf795ae83 100644
--- a/examples/hello-next/pages/posts/[id].tsx
+++ b/examples/hello-next/pages/posts/[id].tsx
@@ -3,7 +3,7 @@ import Link from "next/link";
export default function Post({}) {
const router = useRouter();
-
+
return (
<div style={{ padding: 16 }}>
<h1>Post: {router.query.id}</h1>